From 9d357cbaf74f0c1dc85a16498dac6d819743ce38 Mon Sep 17 00:00:00 2001 From: George Dunlap Date: Fri, 21 Dec 2018 19:35:04 +0000 Subject: [PATCH] libxl/dm_depriv: Fix build Build tests noticed a path where we weren't setting rc. Signed-off-by: George Dunlap --- tools/libxl/libxl_dm.c | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/libxl/libxl_dm.c b/tools/libxl/libxl_dm.c index f5322e3f45..4b97936bd5 100644 --- a/tools/libxl/libxl_dm.c +++ b/tools/libxl/libxl_dm.c @@ -177,6 +177,7 @@ static int libxl__domain_get_device_model_uid(libxl__gc *gc, LOGD(DEBUG, guest_domid, "dm_restrict disabled, starting QEMU as root"); user = NULL; /* Should already be null, but just in case */ + rc = 0; goto out; } -- 2.30.2